Micron Document
Fox's Git Mirrors

Node / rns-mirrors / Reticulum-Go.git / files / pkg / librns / internal_errors.go

Displaying Raw • Download

pkg/librns/internal_errors.go 633735d797cc5f5d48cb2e22e8fd7cd743930daf (633735d7) Text, 443 B

// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2024-2026 Quad4.io

package librns

import "errors"

var (
errInvalidHandle = errors.New("invalid handle")
errInvalidArg = errors.New("invalid argument")
errNotFound = errors.New("not found")
errState = errors.New("invalid state")
errTimeout = errors.New("timeout")
errIO = errors.New("io error")
errInternal = errors.New("internal error")
)

Served by rngit 1.5.2 - Generated in 0.02s